Remove patches that are no longer needed
authorSimon McVittie <smcv@debian.org>
Tue, 18 Jul 2017 21:35:18 +0000 (22:35 +0100)
committerSimon McVittie <smcv@debian.org>
Tue, 18 Jul 2017 21:35:18 +0000 (22:35 +0100)
debian/changelog
debian/patches/build-Add-devel-or-release-to-OSTREE_FEATURES-for-test-sy.patch [deleted file]
debian/patches/main-DevelBuild-yes-to-ostree-version-for-devel-builds.patch [deleted file]
debian/patches/series [deleted file]

index b24d3b533bb8dc2dd2990a826a3ee23f8804b19a..0aa8c5f66e7ee9136266178bf3851b6067b5b9b4 100644 (file)
@@ -1,6 +1,7 @@
 ostree (2017.8-1) UNRELEASED; urgency=medium
 
   * New upstream release
+    - Remove patches that are no longer needed
   * Add a Breaks on flatpak (<< 0.8.7-2~), which rely on libostree to
     download the summary and its signature when mirroring.
     libostree >= 2017.7 no longer does this. On affected flatpak versions,
diff --git a/debian/patches/build-Add-devel-or-release-to-OSTREE_FEATURES-for-test-sy.patch b/debian/patches/build-Add-devel-or-release-to-OSTREE_FEATURES-for-test-sy.patch
deleted file mode 100644 (file)
index 27c5610..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-From: Philip Withnall <withnall@endlessm.com>
-Date: Tue, 20 Jun 2017 17:38:15 +0100
-Subject: =?utf-8?q?build=3A_Add_=E2=80=98devel=E2=80=99_or_=E2=80=98releas?=
- =?utf-8?q?e=E2=80=99_to_OSTREE=5FFEATURES_for_test-symbols=2Esh?=
-
-test-symbols.sh was looking for the DevelBuild string, which is actually
-part of the output from `ostree --version`, not $OSTREE_FEATURES.
-
-Signed-off-by: Philip Withnall <withnall@endlessm.com>
-
-Closes: #948
-Approved by: cgwalters
-
-Origin: upstream, 2017.8, commit:fd50c9732231895b18cd8158726e7f77bc8dcae6
----
- configure.ac          | 1 +
- tests/test-symbols.sh | 2 +-
- 2 files changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 58795a7..65a354c 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -464,6 +464,7 @@ AM_COND_IF([BUILDOPT_IS_DEVEL_BUILD],
-             AC_DEFINE([BUILDOPT_IS_DEVEL_BUILD], [1], [Define if doing a development build])
-             release_build_type=devel,
-             release_build_type=release)
-+OSTREE_FEATURES="$OSTREE_FEATURES $release_build_type"
- AC_CONFIG_FILES([
- Makefile
-diff --git a/tests/test-symbols.sh b/tests/test-symbols.sh
-index 3f62730..4a11183 100755
---- a/tests/test-symbols.sh
-+++ b/tests/test-symbols.sh
-@@ -22,7 +22,7 @@ set -xeuo pipefail
- echo '1..3'
- released_syms=${G_TEST_SRCDIR}/src/libostree/libostree-released.sym
--if echo "$OSTREE_FEATURES" | grep --quiet --no-messages "DevelBuild"; then
-+if echo "$OSTREE_FEATURES" | grep --quiet --no-messages "devel"; then
-     devel_syms=${G_TEST_SRCDIR}/src/libostree/libostree-devel.sym
- else
-     devel_syms=
diff --git a/debian/patches/main-DevelBuild-yes-to-ostree-version-for-devel-builds.patch b/debian/patches/main-DevelBuild-yes-to-ostree-version-for-devel-builds.patch
deleted file mode 100644 (file)
index 035876f..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-From: Colin Walters <walters@verbum.org>
-Date: Mon, 19 Jun 2017 11:23:45 -0400
-Subject: main: DevelBuild=yes to `ostree --version` for devel builds
-
-And use it in `test-symbols.sh`, to fix the `distcheck` case;
-the previous change stopped distributing `libostree-devel.sym`
-in release builds.
-
-Closes: #944
-Approved by: jlebon
-
-Origin: upstream, 2017.8, commit:2a082b20b8da2ffecb4f2c0e179a961c0fd26bd0
----
- configure.ac          | 5 ++++-
- src/ostree/ot-main.c  | 3 +++
- tests/test-symbols.sh | 6 +++++-
- 3 files changed, 12 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index 7946f4f..58795a7 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -460,7 +460,10 @@ AS_IF([test x$enable_experimental_api = xyes],
- )
- AM_CONDITIONAL([ENABLE_EXPERIMENTAL_API],[test x$enable_experimental_api = xyes])
- AM_CONDITIONAL([BUILDOPT_IS_DEVEL_BUILD],[test x$is_release_build != xyes])
--AM_COND_IF([BUILDOPT_IS_DEVEL_BUILD], release_build_type=devel, release_build_type=release)
-+AM_COND_IF([BUILDOPT_IS_DEVEL_BUILD],
-+            AC_DEFINE([BUILDOPT_IS_DEVEL_BUILD], [1], [Define if doing a development build])
-+            release_build_type=devel,
-+            release_build_type=release)
- AC_CONFIG_FILES([
- Makefile
-diff --git a/src/ostree/ot-main.c b/src/ostree/ot-main.c
-index 9aca828..40d77f5 100644
---- a/src/ostree/ot-main.c
-+++ b/src/ostree/ot-main.c
-@@ -242,6 +242,9 @@ ostree_option_context_parse (GOptionContext *context,
-       g_print (" Version: %s\n", PACKAGE_VERSION);
-       if (strlen (OSTREE_GITREV) > 0)
-         g_print (" Git: %s\n", OSTREE_GITREV);
-+#ifdef BUILDOPT_IS_DEVEL_BUILD
-+      g_print (" DevelBuild: yes\n");
-+#endif
-       g_print (" Features:\n");
-       for (char **iter = features; iter && *iter; iter++)
-         g_print ("  - %s\n", *iter);
-diff --git a/tests/test-symbols.sh b/tests/test-symbols.sh
-index d22231d..3f62730 100755
---- a/tests/test-symbols.sh
-+++ b/tests/test-symbols.sh
-@@ -22,7 +22,11 @@ set -xeuo pipefail
- echo '1..3'
- released_syms=${G_TEST_SRCDIR}/src/libostree/libostree-released.sym
--devel_syms=${G_TEST_SRCDIR}/src/libostree/libostree-devel.sym
-+if echo "$OSTREE_FEATURES" | grep --quiet --no-messages "DevelBuild"; then
-+    devel_syms=${G_TEST_SRCDIR}/src/libostree/libostree-devel.sym
-+else
-+    devel_syms=
-+fi
- if echo "$OSTREE_FEATURES" | grep --quiet --no-messages "experimental"; then
-   experimental_sym="${G_TEST_SRCDIR}/src/libostree/libostree-experimental.sym"
-   experimental_sections="${G_TEST_SRCDIR}/apidoc/ostree-experimental-sections.txt"
diff --git a/debian/patches/series b/debian/patches/series
deleted file mode 100644 (file)
index 93c089b..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-main-DevelBuild-yes-to-ostree-version-for-devel-builds.patch
-build-Add-devel-or-release-to-OSTREE_FEATURES-for-test-sy.patch